// Draw dots at the position of the cursor
void setup() {
 size(100, 100);
}

void draw() {
  point(mouseX, mouseY);
}
